Chart for WinRT
Performing Batch Updates

You can perform batch updates without refreshing the chart after each change by entering your code inside the BeginUpdate()/EndUpdate() methods:

Visual Basic
Copy Code
C1Chart1.BeginUpdate()
   ' change or format the chart, add data etc.
   ...
   C1Chart1.EndUpdate()

C#
Copy Code
c1Chart1.BeginUpdate();
   // change or format the chart, add data etc.
   ...
   c1Chart1.EndUpdate();

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Product Support Forum  |  Documentation Feedback